.sky_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px 10px 50px;
    border-bottom: 1px solid #dcdcdc;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

.mobile_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header_logo img{
    width: 90px;
}

.menu_icon{
    display: none;
    cursor: pointer;
    height: 18px;
}

.mobile_menu i{
    font-size: 24px;
}

.header_menu{
    height: 90px;
}

.header_menu ul{
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.header_menu ul .active_link{
    height: 5px;
    background: #1a7944;
    transform: translateX(54px);
    margin-top: 110px;
    transition: .5s;
    border-radius: 3px;
}

.header_menu ul li{
    list-style: none;
    height: 100%;
    margin-right: 2rem;
}

.header_menu ul li a{
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #000;
    height: 100%;
    font-size: 20px;
}

.header_menu ul li:hover > a{
    color: #1a7944;
}

.header_menu ul button{   
    height: 50%;
    border: none;
    border-radius: 10px;
    background: #507550;
    transition: .2s;
}

.header_menu ul button:hover{
   transform: scale(0.9);
}

.header_menu ul button a{  
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

@media screen and (max-width:900px) {
    .sky_header{
        display: block;
    }

    .whtbg{
        background: #fff;
    }

    .menu_icon{
        display: block;
    }
    .sky_header .slide{
        height: 25rem;
        transition: .5s;
    }

    .header_menu{
        position: absolute;
        background: #fff;
        width: 100%;  
        padding-left: 2rem;
        left: 0;
        height: 0;
        overflow: hidden;
        z-index: 1;
    }

    .header_menu ul{
        display: block;
        height: auto;
    }

    .header_menu ul .active_link{
        display: none;
    }

    .header_menu ul li{
        margin-top: 2rem;
        padding-left: 1rem;
    }

    .header_menu ul button{
        margin-top: 2rem;
        margin-left:.5rem;
        padding: 5px;
    }
}

@media screen and (max-width:700px){
    .sky_header{
        padding: 10px 20px 10px 20px;
    }

    .sky_header .slide{
        height: 25rem;
    }

    .header_menu{
        padding-left: .5rem;
    }

    .header_logo img{
        width: 60px;
    }

    .header_menu ul li a{
        font-size: 18px;
    }

    .header_menu ul button a{
        padding: 0 10px;
        font-size: 18px;
    }

}

